home *** CD-ROM | disk | FTP | other *** search
/ Ubisoft - ECTS 99 (UK) (Disc 2) (Press Kit) / Ubisoft - ECTS 99 (UK) (Disc 2) (Press Kit).bin / Ubi_soft.exe / Intro2.dxr / Internal_59_Jump to Movie Button.ls < prev    next >
Encoding:
Text File  |  1999-08-18  |  8.9 KB  |  185 lines

  1. property getPDLError, myBehaviorName, myDistantMovie, myDistantMarker, myJumpMode, myReturn
  2.  
  3. on getBehaviorDescription
  4.   return "JUMP TO MOVIE BUTTON" & RETURN & RETURN & "A click on the sprite makes the playback head jump to any other movie available to your system.  An optional marker name can be used to jump to a precise point in the new movie.  (Use the 'Jump to Marker Button' behavior to jump to a marker in the current movie)." & RETURN & RETURN & "The movie is stored in the form of a relative path (or an absolute path if the movie is saved on a different hard drive).  If you subsequently move either the current movie or the target movie, a dialog will appear to allow you to relocate the target movie.  If this happens at authortime, it is best to reselect the movie in the Behavior Parameters dialog so that the correct relative path is stored." & RETURN & RETURN & "In order to make use of the Play and Return option, place a Play Done commandin the destination movie." & RETURN & RETURN & "If you move both the current movie and the target movie together, or if you move the folder that contains them both, no reselection should be necessary." & RETURN & RETURN & "This behavior is designed for use with the 'Jump Back Button'.  You can set it to record the movie name and the frame number of the current marker so that the 'Jump Back Button' can subsequently return.  NOTE: This feature relies on a global variable: gNavigationButtonList." & RETURN & RETURN & "PERMITTED MEMBER TYPES" & RETURN & "Graphic members" & RETURN & RETURN & "PARAMETERS:" & RETURN & "* Movie to jump to" & RETURN & RETURN & "This is set through an 'Open file' dialog before the Behavior Parameters dialog opens.  If you have already chosen a movie, either click on 'Cancel' to preserve your existing choice, or choose a new movie." & RETURN & RETURN & "* Marker to jump to in the new movie (optional)" & RETURN & "* 'Go to' or 'Play and return'?" & RETURN & "* Remember current marker for Back button?" & RETURN & RETURN & "Select 'Remember current marker for Back button' to ensure that the behavior 'remembers' which markers have already been visited." & RETURN & RETURN & "Use the associated 'Jump Back Button' behavior on a separate sprite to return to visited movies in reverse order." & RETURN & RETURN & "ASSOCIATED BEHAVIORS:" & RETURN & "+ Jump to Marker Button" & RETURN & "+ Jump Back Button" & RETURN & "+ Jump Forward Button" & RETURN & "+ Push Button (to alter rollover / mouseDown states)"
  5. end
  6.  
  7. on getBehaviorTooltip
  8.   return "Use with graphic members." & RETURN & RETURN & "When you drop this behavior on a sprite, you will be" & RETURN & "invited to choose which movie to jump to on mouseUp." & RETURN & RETURN & "Use this behavior with the 'Jump Back Button' to allow" & RETURN & "the user to return to visited movies." & RETURN & RETURN & "The behavior uses the FileIO displayOpen dialog to" & RETURN & "locate a movie anywhere on your system." & RETURN & "It calculates and uses relative path to the movie."
  9. end
  10.  
  11. on beginSprite me
  12.   Initialize(me)
  13. end
  14.  
  15. on mouseUp me
  16.   jump(me)
  17. end
  18.  
  19. on Initialize me
  20.   global gNavigationButtonList
  21.   if not voidp(getPDLError) then
  22.     ErrorAlert(me, #getPDL_Invalid)
  23.   end if
  24.   myBehaviorName = string(me)
  25.   delete word 1 of myBehaviorName
  26.   delete char -30001 of myBehaviorName
  27.   delete char -30001 of myBehaviorName
  28.   if myReturn then
  29.     if voidp(gNavigationButtonList) then
  30.       gNavigationButtonList = [#stack: [], #forward: [], #index: []]
  31.     else
  32.       if gNavigationButtonList.ilk <> #propList then
  33.         ErrorAlert(me, #invalidGlobal, gNavigationButtonList)
  34.       else
  35.         if not gNavigationButtonList.findPos(#stack) then
  36.           ErrorAlert(me, #invalidGlobal, gNavigationButtonList)
  37.         else
  38.           if not gNavigationButtonList.findPos(#index) then
  39.             ErrorAlert(me, #invalidGlobal, gNavigationButtonList)
  40.           else
  41.             if not gNavigationButtonList.findPos(#forward) then
  42.               ErrorAlert(me, #invalidGlobal, gNavigationButtonList)
  43.             end if
  44.           end if
  45.         end if
  46.       end if
  47.     end if
  48.   end if
  49.   case myDistantMarker of
  50.     EMPTY, " ":
  51.       myDistantMarker = 0
  52.   end case
  53. end
  54.  
  55. on jump me
  56.   global gNavigationButtonList
  57.   currentMarker = [#frame: marker(0), #movie: the movieName]
  58.   if myReturn then
  59.     gNavigationButtonList.stack.append(currentMarker)
  60.     if not gNavigationButtonList.index.getPos(currentMarker) then
  61.       gNavigationButtonList.index.append(currentMarker)
  62.     end if
  63.     gNavigationButtonList.forward = []
  64.   end if
  65.   if myJumpMode = "Go to" then
  66.     go(marker(myDistantMarker), myDistantMovie)
  67.   else
  68.     play frame marker(myDistantMarker) of movie myDistantMovie
  69.   end if
  70.   if the movieName = myDistantMovie then
  71.     if the frameLabel <> myDistantMarker then
  72.       ErrorAlert(me, #invalidMarker, currentMarker)
  73.     end if
  74.   end if
  75. end
  76.  
  77. on ErrorAlert me, theError, data
  78.   behaviorName = string(me)
  79.   delete word 1 of behaviorName
  80.   delete char -30001 of behaviorName
  81.   delete char -30001 of behaviorName
  82.   case data.ilk of
  83.     #void:
  84.       data = "<void>"
  85.     #symbol:
  86.       data = "#" & data
  87.   end case
  88.   case theError of
  89.     #getPDL_NoMovie:
  90.       beep()
  91.       return [#getPDLError: [#comment: "Click 'Cancel':  No movie was chosen.", #format: #string, #range: [EMPTY], #default: EMPTY]]
  92.     #getPDL_Invalid:
  93.       alert("BEHAVIOR ERROR: Frame " & the frame & ", Sprite " & me.spriteNum & RETURN & RETURN & "Parameters for behavior " & myBehaviorName & " have not been correctly set.  Select a valid movie name in the Behavior Parameters dialog." & RETURN & RETURN & "Current movie = " & data)
  94.       halt()
  95.     #invalidGlobal:
  96.       alert("BEHAVIOR ERROR: Frame " & the frame & ", Sprite " & me.spriteNum & RETURN & RETURN & "Behavior " & myBehaviorName & " requires a global gNavigationButtonList with the structure:" & RETURN & "[#stack [...], #index: [...], #forward: [...]]" & RETURN & RETURN & "Current value = " & data)
  97.       abort()
  98.     #invalidMarker:
  99.       if the runMode = "Author" then
  100.         put RETURN & the labelList
  101.         alert("BEHAVIOR ERROR: " & data & ", Sprite " & me.spriteNum && RETURN & "Behavior " & myBehaviorName & RETURN & RETURN & "There is no marker " & QUOTE & myDistantMarker & QUOTE & " in movie " & myDistantMovie & ".  Enter a valid marker (see Message Window) in the Behavior Parameters dialog.")
  102.       end if
  103.   end case
  104. end
  105.  
  106. on getPropertyDescriptionList me
  107.   if not (the currentSpriteNum) then
  108.     exit
  109.   end if
  110.   theSprite = sprite(the currentSpriteNum)
  111.   theScriptList = theSprite.scriptList
  112.   behaviorCount = theScriptList.count
  113.   if theScriptList.count() then
  114.     currentMovie = GetCurrentMovie(me, theScriptList, behaviorCount)
  115.     fileIOChild = new(xtra("fileIO"))
  116.     if the machineType = 256 then
  117.       setFilterMask(fileIOChild, "Director movies,*.d*r")
  118.     else
  119.       setFilterMask(fileIOChild, "MV93MV95MV97MV07")
  120.     end if
  121.     chosenMovie = displayOpen(fileIOChild)
  122.     if chosenMovie = EMPTY then
  123.       if not stringp(currentMovie) then
  124.         return ErrorAlert(me, #getPDL_NoMovie)
  125.       else
  126.         MovieList = [currentMovie]
  127.       end if
  128.     else
  129.       MovieList = [GetRelativePathTo(me, chosenMovie)]
  130.     end if
  131.   else
  132.     MovieList = [#noMovieChosen]
  133.   end if
  134.   return [#myDistantMovie: [#comment: "On mouseUp, go to movie:", #format: #movie, #range: MovieList, #default: MovieList[1]], #myDistantMarker: [#comment: "Marker in the other movie (optional):", #format: #string, #default: " "], #myJumpMode: [#comment: "Jump Mode:", #format: #string, #range: ["Go to", "Play and Return"], #default: "Go to"], #myReturn: [#comment: "Remember current marker for Back button?", #format: #boolean, #default: 1]]
  135. end
  136.  
  137. on GetCurrentMovie me, theScriptList, behaviorCount
  138.   thisScript = string(me)
  139.   put "member (" into thisScript.word[1]
  140.   thisScript = value(thisScript)
  141.   repeat while behaviorCount
  142.     if theScriptList[behaviorCount][1] = thisScript then
  143.       behaviorInitializers = value(theScriptList[behaviorCount][2])
  144.       if behaviorInitializers.findPos(#myDistantMovie) then
  145.         return behaviorInitializers.getProp(#myDistantMovie)
  146.       end if
  147.     end if
  148.     behaviorCount = behaviorCount - 1
  149.   end repeat
  150. end
  151.  
  152. on GetRelativePathTo me, distantMovie
  153.   thatMoviePath = distantMovie
  154.   thisMoviePath = the moviePath
  155.   saveItemDelimiter = the itemDelimiter
  156.   if the machineType = 256 then
  157.     newItemDelimiter = "\"
  158.   else
  159.     newItemDelimiter = ":"
  160.   end if
  161.   the itemDelimiter = newItemDelimiter
  162.   repeat while 1
  163.     thisFile = thisMoviePath.item[1]
  164.     thatFile = thatMoviePath.item[1]
  165.     if thisFile <> thatFile then
  166.       exit repeat
  167.     end if
  168.     delete thatMoviePath.item[1]
  169.     delete thatMoviePath.item[1]
  170.   end repeat
  171.   if thatMoviePath = distantMovie then
  172.     relativePath = distantMovie
  173.   else
  174.     relativePath = "@"
  175.     thisDeep = thisMoviePath.item.count
  176.     repeat while thisDeep
  177.       relativePath = relativePath & newItemDelimiter
  178.       thisDeep = thisDeep - 1
  179.     end repeat
  180.     relativePath = relativePath & thatMoviePath
  181.   end if
  182.   the itemDelimiter = saveItemDelimiter
  183.   return relativePath
  184. end
  185.